home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 22 / PCPP #22.iso / Quake2 / q2source_12_11 / utils3 / qe4 / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-06  |  265 b   |  13 lines

  1. // parse.h -- text file parsing routines
  2.  
  3. #define    MAXTOKEN    1024
  4.  
  5. extern    char    token[MAXTOKEN];
  6. extern    int        scriptline;
  7.  
  8. void    StartTokenParsing (char *data);
  9. qboolean GetToken (qboolean crossline);
  10. void UngetToken (void);
  11. qboolean TokenAvailable (void);
  12.  
  13.